Defines the + operator for Matrix class.
            
            
            
            
            
            
            
            '宣言
 
Public Operator +( _
   ByVal  As Matrix(Of T), _
   ByVal  As Matrix(Of T) _
) As Matrix(Of T)
             
        
            
            public Matrix<T> operator +( 
   Matrix<T> ,
   Matrix<T> 
)
             
        
             
        
            パラメータ
- left
 
- A Matrix indicates the left operand.
 - right
 
- A Matrix indicates the right operand.
 
            
            戻り値の型
A Matrix indicates the add operation result of two operands.